home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Errors / HardwareVolumeLockError.h < prev    next >
Text File  |  2000-06-23  |  338b  |  21 lines

  1. // HardwareVolumeLockError.h
  2.  
  3. #ifndef HardwareVolumeLockError_h
  4. #define HardwareVolumeLockError_h
  5.  
  6. #ifndef VolumeLockError_h
  7. #include "VolumeLockError.h"
  8. #endif
  9.  
  10. class HardwareVolumeLockError: VolumeLockError
  11.   {
  12.     public:
  13.         HardwareVolumeLockError( OSErr error )
  14.           : VolumeLockError( error )
  15.           {}
  16.         
  17.         // Used for wPrErr
  18.   };
  19.  
  20. #endif
  21.